Small docker updates

This commit is contained in:
whitney 2024-10-29 15:22:06 -07:00
parent d7d895bcd3
commit 78b5a0f360
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,3 @@
version: "3"
networks:
gitea_network:
external: false

View File

@ -15,6 +15,7 @@ services:
- TZ=Etc/UTC
volumes:
- /path/to/config:/config
- /path/to/config/configuration.yaml:/config/configuration.yaml
ports:
- 8123:8123
labels:

View File

@ -3,7 +3,8 @@ FROM nginx:alpine
COPY nginx/nginx.conf /etc/nginx/nginx.conf
COPY website /usr/share/nginx/html
EXPOSE 80
# Exports 81, overridden in nginx.conf
EXPOSE 81
CMD ["nginx", "-g", "daemon off;"]