You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
616 B
26 lines
616 B
version: '3'
|
|
services:
|
|
gkcorp-web-nginx:
|
|
container_name: gkcorp-web-nginx
|
|
image: nginx:alpine
|
|
ports:
|
|
- "30808:80"
|
|
- "30843:443"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./:/usr/share/nginx/html
|
|
- ./nginx/:/etc/nginx/conf.d/
|
|
- ./certbot/conf/:/etc/nginx/ssl/:ro
|
|
- ./certbot/www:/var/www/certbot/:ro
|
|
networks:
|
|
- app-network
|
|
certbot:
|
|
image: certbot/certbot:latest
|
|
volumes:
|
|
- ./certbot/www/:/var/www/certbot/:rw
|
|
- ./certbot/conf/:/etc/letsencrypt/:rw
|
|
networks:
|
|
app-network:
|
|
name: gk.internal
|
|
# driver: bridge
|
|
external: true
|
|
|