Guest User

Untitled

a guest
Feb 13th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. version: '3'
  2. services:
  3. gogs-db:
  4. image: postgres:latest
  5. environment:
  6. - "POSTGRES_USER=gogs_user"
  7. - "POSTGRES_PASSWORD=gogs"
  8. - "POSTGRES_DB=gogs"
  9. volumes:
  10. - "<your gogs-db directory>:/var/lib/postgresql/data"
  11. restart: always
  12. gogs:
  13. image: gogs/gogs:latest
  14. ports:
  15. - "3000:3000"
  16. links:
  17. - gogs-db
  18. environment:
  19. - "RUN_CROND=true"
  20. volumes:
  21. - "<your gogs-data directory>:/data"
  22. restart: always
Add Comment
Please, Sign In to add comment