2023-12-14 11:29:14 +00:00
|
|
|
# Phanpy Docker setup and Drone build
|
|
|
|
|
|
|
|
This is an experiment. To build and run locally:
|
|
|
|
|
|
|
|
```
|
|
|
|
docker build . -t phanpy:latest -f Dockerfile_phanpy
|
|
|
|
```
|
|
|
|
|
2024-01-02 22:17:28 +00:00
|
|
|
To run the container in the background:
|
2023-12-14 11:29:14 +00:00
|
|
|
|
|
|
|
```
|
2024-01-02 22:17:28 +00:00
|
|
|
docker run -d -p 8000:80 -t phanpy:latest
|
2023-12-14 11:29:14 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Now access Phanpy on http://localhost:8000
|
|
|
|
|