1
0
Fork 0
Docker Compose files for Thulium
Go to file
Jonathan Chan 0bb46466a9
Create README.md
2019-06-14 23:07:53 -07:00
funkwhale Add Funkwhale Docker Compose file; TTRSS uses temporary Docker image. 2019-06-09 21:54:33 -07:00
ghost Initial commit of Docker Compose files for Gitea, Ghost, and Nextcloud. 2018-07-02 17:08:24 -07:00
gitea Initial commit of Docker Compose files for Gitea, Ghost, and Nextcloud. 2018-07-02 17:08:24 -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@8b5d459277 Adding docker-compose.yml files for standardfile and ttrss. 2018-11-10 12:31:40 -08:00
ttrss Add Funkwhale Docker Compose file; TTRSS uses temporary Docker image. 2019-06-09 21:54:33 -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: