1
0
Fork 0
Docker Compose files for Thulium
Go to file
Jonathan Chan b47485eae8 Updated URL for TTRSS. 2020-10-21 23:18:09 -07:00
funkwhale Updated Funkwhale and TTRSS; building Gitea image from local Dockerfile. 2019-07-06 18:03:16 -07:00
ghost Initial commit of Docker Compose files for Gitea, Ghost, and Nextcloud. 2018-07-02 17:08:24 -07:00
gitea No longer building Gitea image from local Dockerfile. I don't remember why I was doing that in the first place. 2020-04-09 17:09:00 -07:00
mediawiki Added docker-compose.yml file for MediaWiki. 2019-06-13 22:42:15 -07:00
nextcloud Updated TTRSS to use x86dev/docker-ttrss instead of clue/ttrss; updated synced volumes for Nextcloud. 2019-01-20 13:05:19 -08:00
standardfile@38cd3a6f31 Updated Funkwhale and TTRSS; building Gitea image from local Dockerfile. 2019-07-06 18:03:16 -07:00
ttrss Updated URL for TTRSS. 2020-10-21 23:18:09 -07:00
README.md Create README.md 2019-06-14 23:07:53 -07:00

README.md

Template

version: "3"

services:
  example:
    image: author/example:tag
    container_name: example
    restart: always
    environment:
      - ENV_VAR=value
    ports:
      - 8000:80
    volumes:
      - /unnamed/volume/will/be/created
      - myvolume:/var/www/html
      - /srv/data/host/location:/srv/data
    networks:
      - mynetwork
    depends_on:
      - db
  db:
    image: postgres
    container_name: example-db
    restart: always
    expose:
      - 5432
    volumes:
      - example-db:/var/lib/postgresql/9.3./main
      
networks:
  mynetwork:

volumes:
  myvolume:
  example-db: