mirror of
https://github.com/pinry/pinry.git
synced 2026-03-06 04:01:10 +01:00
Move the docker related content to a better folder
This commit is contained in:
16
docker/docker-compose.example.yml
Normal file
16
docker/docker-compose.example.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
web:
|
||||
build: .
|
||||
command: >
|
||||
bash -c "/scripts/start.sh"
|
||||
ports:
|
||||
# if you use "127.0.0.1", no one except you can visit it from within
|
||||
# - "127.0.0.1:10000:8000"
|
||||
- "80:80"
|
||||
volumes:
|
||||
# overwrite local_settings, you can always modify your local_settings file
|
||||
- ./pinry/local_settings.py:/srv/www/pinry/pinry/settings/local_settings.py
|
||||
- ./data/:/data/
|
||||
restart: always
|
||||
Reference in New Issue
Block a user