Skip to content

Commit 430de67

Browse files
committed
add docker-compose.yml
1 parent 096bb62 commit 430de67

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
config
2+
donwloads
3+
movies

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,13 @@ If you would like to run the latest updates from the master branch as well as en
1212

1313
```
1414
docker run -d --net="host" --name="couchpotato" -v /path/to/couchpotato/data:/config -v /path/to/downloads:/downloads -v /path/to/movies:/movies -v /etc/localtime:/etc/localtime:ro -e EDGE=1 -p 5050:5050 needo/couchpotato
15+
```
16+
17+
Docker compose
18+
--------------
19+
20+
To run plex with [docker-compose](https://docs.docker.com/compose/) clone the repository and run:
21+
22+
```
23+
docker-compose up -d
1524
```

docker-compose.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
couchpotato:
2+
build: .
3+
net: host
4+
environment:
5+
- EDGE=1
6+
volumes:
7+
- /etc/localtime:/etc/localtime:ro
8+
- config:/config
9+
- downloads:/downloads
10+
- movies:/movies

0 commit comments

Comments
 (0)