https://github.com/infinityofspace/ente-docker
https://github.com/infinityofspace/ente-docker
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/infinityofspace/ente-docker
- Owner: infinityofspace
- License: agpl-3.0
- Created: 2024-08-04T15:57:20.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-28T21:16:46.000Z (about 1 year ago)
- Last Synced: 2025-07-29T05:40:47.594Z (11 months ago)
- Language: Dockerfile
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# ente-docker
---
*NOTE: This repo is deprecated, since there are now up to date prebuild docker image for the web and server components. Please refer to the official [web docs](https://github.com/ente-io/ente/blob/main/web/docs/docker.md) and [server docs](https://github.com/ente-io/ente/blob/main/server/docs/quickstart.md).*
---
[](https://github.com/infinityofspace/ente-docker/actions/workflows/publish-server-nightly.yml)
[](https://github.com/infinityofspace/ente-docker/actions/workflows/publish-web-nightly.yml)
## About
This project offers prebuild Docker images from the ente server (so called museum) and web app, as there are no official prebuild Docker images
or Dockefile for the web app.
The web app Dockerfile is based on these [discussion](https://github.com/ente-io/ente/discussions/1183).
## Usage
You can pull the server image with:
```commandline
docker pull ghcr.io/infinityofspace/ente-server:latest
```
And the web server image with:
```commandline
docker pull ghcr.io/infinityofspace/ente-web:latest
```
Or build the images yourself:
```commandline
git clone https://github.com/ente-io/ente.git
cd ente/server
docker build -t ghcr.io/infinityofspace/ente-server .
```
```commandline
git clone https://github.com/ente-io/ente.git
git clone https://github.com/infinityofspace/ente-docker.git
cp -r ente-docker/web/* ente/web
cd ente/web
git submodule update --init --recursive
docker build -t ghcr.io/infinityofspace/ente-web .
```
## Copyright Notices
ente is not affiliated with this project. The docker images are licensed with the original license of the server and web app,
which can be found [here](https://github.com/ente-io/ente/blob/main/LICENSE).
The ente repository can be found [here](https://github.com/ente-io/ente).