All checks were successful
SSH Frontend Deploy / ssh-deploy (push) Successful in 5s
31 lines
604 B
YAML
31 lines
604 B
YAML
services:
|
|
timelapse-frontend:
|
|
image: nginx:latest
|
|
container_name: timelapse-frontend
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- /home/timelapse/nginx:/usr/share/nginx/html
|
|
- nginx-config:/etc/nginx
|
|
environment:
|
|
- NGINX_VERSION=1.27.1
|
|
- NJS_VERSION=0.8.5
|
|
- NJS_RELEASE=1~bookworm
|
|
- PKG_RELEASE=1~bookworm
|
|
- DYNPKG_RELEASE=2~bookworm
|
|
restart: always
|
|
networks:
|
|
- bridge
|
|
- timelapse_network
|
|
|
|
volumes:
|
|
nginx-config:
|
|
driver: local
|
|
|
|
networks:
|
|
bridge:
|
|
driver: bridge
|
|
timelapse_network:
|
|
driver: bridge
|