Created
January 17, 2023 22:52
-
-
Save pmnlla/f498ed013a65405cdb1c302b945ff74a to your computer and use it in GitHub Desktop.
esty drinks psis | basic nginx docker script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "1.0" | |
services: | |
nignx: | |
image: lscr.io/linuxserver/nginx:latest | |
container_name: "nginx" | |
environment: | |
- PUID=1001 | |
- PGID=1001 | |
- TZ=Canada/Pacific | |
ports: | |
- 80:80 | |
- 443:443 | |
volumes: | |
- /home/ubuntu/.config/nginx:/config | |
restart: unless-stopped | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment