aboutsummaryrefslogblamecommitdiffstats
path: root/docker-compose.yaml
blob: 5f3e2179c236dc0fa02a92f136d262969dcbf51e (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                           
                   

                                                                  




                                         

         
version: "3.7"
services:
  web:
    image: web
    build:
      context: ./
    networks:
      - webnet
    restart: unless-stopped
    ports:
      - "9000:9000"
    volumes:
      - /etc/letsencrypt/archive/blog.terminaldweller.com/:/certs/
    cap_drop:
      - ALL
    environment:
      - SERVER_DEPLOYMENT_TYPE=deployment
      - SERVER_LISTEN_PORT=9000
networks:
  webnet: