25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

docker-compose.example.yml 440 B

12345678910111213141516
  1. version: '3'
  2. services:
  3. web:
  4. build: .
  5. command: >
  6. bash -c "/scripts/start.sh"
  7. ports:
  8. # if you use "127.0.0.1", no one except you can visit it from within
  9. # - "127.0.0.1:10000:8000"
  10. - "80:80"
  11. volumes:
  12. # overwrite local_settings, you can always modify your local_settings file
  13. - ./pinry/local_settings.py:/srv/www/pinry/pinry/settings/local_settings.py
  14. - ./data/:/data/
  15. restart: always